
/* --- 3. SERVICES GRID (RESPONSIVE) --- */
.services-container {
    width: 100%;
    max-width: 1400px; /* Increased for TV/Wide screens */
    margin: 0 auto;
    padding: 20px 12px 80px 12px;
}

.grid {
    display: grid;
    /* Default: 2 columns for Mobile */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    width: 100%;
}

/* Tablet: 3 Columns */
@media (min-width: 768px) {
    .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Desktop & TV: 4 Columns */
@media (min-width: 1100px) {
    .grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
}

/* --- 4. CARD INTERACTIVITY (STABILIZED SIZES) --- */
.card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    /* Smoother "Spring" transition */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Syncing Icon & Image Size */
.main-icon, .main-icon-img {
    width: 60px;
    height: 60px;
    font-size: 3rem; /* Icon font size matches image height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    border-color: #6c5ce7;
    box-shadow: 0 25px 50px rgba(108, 92, 231, 0.12);
}

/* Icon Pop Effect on Hover */
.card:hover .main-icon, 
.card:hover .main-icon-img {
    transform: scale(1.2) rotate(8deg);
    color: #6c5ce7;
}

.card-content h3 { 
    font-size: 1.1rem; 
    margin-bottom: 8px; 
    color: #2d3436; 
    font-weight: 800;
}

.card-content p { 
    font-size: 0.8rem; 
    color: #777; 
    line-height: 1.5; 
}

/* Fully Clickable Area */
.main-link {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
    opacity: 0;
}

/* --- 5. MOBILE SPECIFIC (TIGHTER) --- */
@media (max-width: 600px) {
    .grid { gap: 10px; }
    .card { padding: 25px 10px; border-radius: 18px; }
    .main-icon, .main-icon-img { width: 50px; height: 50px; font-size: 2.5rem; }
}
/* search area for gift art */

.creative-search-area { 
    padding: 30px 15px; 
    width: 100%;
}

.search-glow-box {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.1);
    border: 2px solid transparent;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-glow-box:focus-within {
    border-color: #a29bfe;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
}

.search-glow-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 1rem;
    background: transparent;
}

.search-icon-circle {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


